802. Find Eventual Safe States

1. Question

We start at some node in a directed graph, and every turn, we walk along a directed edge of the graph. If we reach a terminal node (that is, it has no outgoing directed edges), we stop.

We define a starting node to be safe if we must eventually walk to a terminal node. More specifically, there is a natural number k, so that we must have stopped at a terminal node in less than k steps for any choice of where to walk.

Return an array containing all the safe nodes of the graph. The answer should be sorted in ascending order.

The directed graph has n nodes with labels from 0 to n - 1, where n is the length of graph. The graph is given in the following form: graph[i]is a list of labels j such that(i, j) is a directed edge of the graph, going from node ito node j.

2. Examples

Illustration of graph

Example 1:

Input: graph = [[1,2],[2,3],[5],[0],[5],[],[]]
Output: [2,4,5,6]
Explanation: The given graph is shown above.

Example 2:

Input: graph = [[1,2,3,4],[1,2],[3,4],[0,4],[]]
Output: [4]

3. Constraints

  • n == graph.length
  • 1 <= n <= 104
  • 0 <= graph[i].length <= n
  • graph[i] is sorted in a strictly increasing order.
  • The graph may contain self-loops.
  • The number of edges in the graph will be in the range[1, 4 * 104].

4. References

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/find-eventual-safe-states 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

5. Solutions

class Solution {
    public List<Integer> eventualSafeNodes(int[][] graph) {
        ArrayList<Integer> res = new ArrayList<>();

        /*
        -1 unsafe
        0 unvisited
        1 safe
         */
        int[] flag = new int[graph.length];

        for (int i = 0; i < graph.length; i++) {
            if (getRes(graph, i, flag) == 1) {
                res.add(i);
            }
        }
        return res;
    }

    private int getRes(int[][] graph, int i, int[] flag) {
        if (flag[i] != 0) {
            return flag[i];
        }

        flag[i] = -1;
        for (int i1 : graph[i]) {
            if (getRes(graph, i1, flag) == -1) {
                return flag[i];
            }
        }

        flag[i] = 1;
        return flag[i];
    }
}
Copyright © rootwhois.cn 2021-2022 all right reserved,powered by GitbookFile Modify: 2023-03-05 10:55:51

results matching ""

    No results matching ""